import React from "react"; import { AttachmentValue } from "@easyv/dtable-types/output/Cell"; interface Props { onChange?: (file: AttachmentValue) => void; onAddAttachment?: (file: AttachmentValue[0]) => void; onDeleteAttachment?: (id: string) => void; value: AttachmentValue; rowId?: string; columnId?: string; disabled?: boolean; tableId: string; } declare function Comp({ columnId, disabled, rowId, tableId, value, className, onAddAttachment, onDeleteAttachment, onChange, }: Props & ClassNameAndStyle): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;